Add Ameba and address code linting issues

This commit is contained in:
Michael Miller 2019-04-06 17:19:02 -06:00
parent 99926c775e
commit 53bfcc25ef
16 changed files with 33 additions and 32 deletions

View file

@ -125,7 +125,6 @@ describe Spectator::Matchers::TruthyMatcher do
it "contains the \"truthy\"" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::TruthyMatcher.new(true)
match_data = matcher.match(partial)
@ -145,7 +144,6 @@ describe Spectator::Matchers::TruthyMatcher do
it "contains the \"truthy\"" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::TruthyMatcher.new(true)
match_data = matcher.match(partial)
@ -261,7 +259,6 @@ describe Spectator::Matchers::TruthyMatcher do
it "contains the \"falsey\"" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::TruthyMatcher.new(false)
match_data = matcher.match(partial)
@ -281,7 +278,6 @@ describe Spectator::Matchers::TruthyMatcher do
it "contains the \"falsey\"" do
value = 42
label = "everything"
partial = new_partial(value)
matcher = Spectator::Matchers::TruthyMatcher.new(false)
match_data = matcher.match(partial)