Merge branch 'master' into bug/1153_stats

This commit is contained in:
Jyri-Petteri Paloposki 2019-05-22 01:48:37 +03:00 committed by GitHub
commit dc0ca7239a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 21 deletions

View file

@ -84,6 +84,10 @@ class FeedSmokeTest < ActionDispatch::IntegrationTest
assert_success "/todos.rss?token=#{ users(:admin_user).token }&done=7"
end
def test_all_starred_active_actions_rss
assert_success "/todos.rss?token=#{ users(:admin_user).token }&tag=starred"
end
def test_all_actions_completed_in_last_7_days_txt
assert_success "/todos.txt?token=#{ users(:admin_user).token }&done=7"
end