tests: move test/helpers to test/test_helpers.

The Rails convention is for test/helpers to be used for testing the view
helpers in app/helpers. We were using it to store certain utility
methods instead. Move these to test/test_helpers so that test/helpers
can be used for its intended purpose.
This commit is contained in:
evazion
2018-01-14 15:03:53 -06:00
parent 7c8cfc1e31
commit 4f543671a2
24 changed files with 7 additions and 57 deletions

View File

@@ -1,13 +1,6 @@
require 'test_helper'
require 'helpers/pool_archive_test_helper'
require 'helpers/saved_search_test_helper'
require 'helpers/iqdb_test_helper'
class PostTest < ActiveSupport::TestCase
include PoolArchiveTestHelper
include SavedSearchTestHelper
include IqdbTestHelper
def assert_tag_match(posts, query)
assert_equal(posts.map(&:id), Post.tag_match(query).pluck(:id))
end