Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warnings about tests without assertions #528

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ def using_sprockets4?
Gem::Version.new(Sprockets::VERSION) >= Gem::Version.new('4.x')
end

def test_truth
end

def test_foo_and_bar_different_digests
refute_equal @foo_js_digest, @bar_js_digest
refute_equal @foo_css_digest, @bar_css_digest
Expand Down Expand Up @@ -802,9 +799,11 @@ def setup
end

def test_javascript_include_tag_integrity
pass
end

def test_stylesheet_link_tag_integrity
pass
end
end

Expand Down
Loading