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

Skip a taint test on Ruby 2.7 #329

Merged
merged 1 commit into from Nov 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 9 additions & 7 deletions test/test_rake_file_list.rb
Expand Up @@ -496,13 +496,15 @@ def test_clone_and_dup
assert_equal ["a", "b", "c"], d
end

def test_dup_and_clone_replicate_taint
a = FileList["a", "b", "c"]
a.taint
c = a.clone
d = a.dup
assert c.tainted?, "Clone should be tainted"
assert d.tainted?, "Dup should be tainted"
if RUBY_VERSION < '2.7'
def test_dup_and_clone_replicate_taint
a = FileList["a", "b", "c"]
a.taint
c = a.clone
d = a.dup
assert c.tainted?, "Clone should be tainted"
assert d.tainted?, "Dup should be tainted"
end
end

def test_duped_items_will_thaw
Expand Down