mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add Ameba and address code linting issues
This commit is contained in:
parent
99926c775e
commit
53bfcc25ef
16 changed files with 33 additions and 32 deletions
|
@ -154,7 +154,7 @@ describe Spectator::DSL::NestedExampleGroupBuilder do
|
|||
it "adds a hook" do
|
||||
hook_called = false
|
||||
builder = Spectator::DSL::NestedExampleGroupBuilder.new("foo")
|
||||
builder.add_around_each_hook(->(proc : ->) {
|
||||
builder.add_around_each_hook(->(_proc : ->) {
|
||||
hook_called = true
|
||||
})
|
||||
root = Spectator::DSL::RootExampleGroupBuilder.new.build(Spectator::Internals::SampleValues.empty)
|
||||
|
|
|
@ -143,7 +143,7 @@ describe Spectator::DSL::RootExampleGroupBuilder do
|
|||
it "adds a hook" do
|
||||
hook_called = false
|
||||
builder = Spectator::DSL::RootExampleGroupBuilder.new
|
||||
builder.add_around_each_hook(->(proc : ->) {
|
||||
builder.add_around_each_hook(->(_proc : ->) {
|
||||
hook_called = true
|
||||
})
|
||||
group = builder.build(Spectator::Internals::SampleValues.empty)
|
||||
|
|
|
@ -93,7 +93,7 @@ describe Spectator::ExampleIterator do
|
|||
end
|
||||
else
|
||||
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty).tap do |sub_group|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(5) do |j|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(sub_group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
expected_examples << example
|
||||
end
|
||||
|
@ -113,7 +113,7 @@ describe Spectator::ExampleIterator do
|
|||
PassingExample.new(group, Spectator::Internals::SampleValues.empty)
|
||||
else
|
||||
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty).tap do |sub_group|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(5) do |j|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(sub_group, Spectator::Internals::SampleValues.empty)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -53,7 +53,6 @@ describe Spectator::Internals::Harness do
|
|||
describe "#report_expectation" do
|
||||
context "with a successful result" do
|
||||
it "stores the result" do
|
||||
error = nil.as(Exception?)
|
||||
expectation = new_satisfied_expectation
|
||||
spy = SpyExample.create do
|
||||
harness = Spectator::Internals::Harness.current
|
||||
|
@ -81,7 +80,6 @@ describe Spectator::Internals::Harness do
|
|||
end
|
||||
|
||||
it "stores the result" do
|
||||
error = nil.as(Exception?)
|
||||
expectation = new_unsatisfied_expectation
|
||||
spy = SpyExample.create do
|
||||
harness = Spectator::Internals::Harness.current
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -28,7 +28,7 @@ def nested_group_with_sub_groups(sub_group_count = 5, example_count = 5)
|
|||
examples = [] of Spectator::Example
|
||||
group.children = Array(Spectator::ExampleComponent).new(sub_group_count) do |i|
|
||||
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty).tap do |sub_group|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(example_count) do |j|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(example_count) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -359,7 +359,7 @@ describe Spectator::NestedExampleGroup do
|
|||
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, hooks, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -378,7 +378,7 @@ describe Spectator::NestedExampleGroup do
|
|||
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, hooks, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -397,7 +397,7 @@ describe Spectator::NestedExampleGroup do
|
|||
root = Spectator::RootExampleGroup.new(hooks, Spectator::ExampleConditions.empty)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -416,7 +416,7 @@ describe Spectator::NestedExampleGroup do
|
|||
root = Spectator::RootExampleGroup.new(hooks, Spectator::ExampleConditions.empty)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
|
|
@ -22,7 +22,7 @@ def root_group_with_sub_groups(sub_group_count = 5, example_count = 5)
|
|||
examples = [] of Spectator::Example
|
||||
group.children = Array(Spectator::ExampleComponent).new(sub_group_count) do |i|
|
||||
Spectator::NestedExampleGroup.new(i.to_s, group, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty).tap do |sub_group|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(example_count) do |j|
|
||||
sub_group.children = Array(Spectator::ExampleComponent).new(example_count) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -246,7 +246,7 @@ describe Spectator::RootExampleGroup do
|
|||
examples = [] of Spectator::Example
|
||||
hooks = new_hooks(after_all: ->{ called = true; nil })
|
||||
group = Spectator::RootExampleGroup.new(hooks, Spectator::ExampleConditions.empty)
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
@ -263,7 +263,7 @@ describe Spectator::RootExampleGroup do
|
|||
examples = [] of Spectator::Example
|
||||
hooks = new_hooks(after_each: ->{ called = true; nil })
|
||||
group = Spectator::RootExampleGroup.new(hooks, Spectator::ExampleConditions.empty)
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |i|
|
||||
group.children = Array(Spectator::ExampleComponent).new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).tap do |example|
|
||||
examples << example
|
||||
end
|
||||
|
|
|
@ -856,7 +856,7 @@ describe Spectator::RunnableExample do
|
|||
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, conditions)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
result = run_example(FailingExample, group)
|
||||
run_example(FailingExample, group)
|
||||
called.should be_false
|
||||
end
|
||||
end
|
||||
|
@ -1219,7 +1219,7 @@ describe Spectator::RunnableExample do
|
|||
root = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, conditions)
|
||||
group = Spectator::NestedExampleGroup.new("what", root, Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
root.children = [group.as(Spectator::ExampleComponent)]
|
||||
result = run_example(ErroredExample, group)
|
||||
run_example(ErroredExample, group)
|
||||
called.should be_false
|
||||
end
|
||||
end
|
||||
|
|
|
@ -100,7 +100,7 @@ describe Spectator::Runner do
|
|||
end
|
||||
|
||||
it "#start_example is called for each example" do
|
||||
group = SpyExample.create_group(5) { |index| nil }
|
||||
group = SpyExample.create_group(5) { |_| nil }
|
||||
suite = new_test_suite(group)
|
||||
spy = SpyFormatter.new
|
||||
runner = Spectator::Runner.new(suite, spectator_test_config(spy))
|
||||
|
@ -109,7 +109,7 @@ describe Spectator::Runner do
|
|||
end
|
||||
|
||||
it "passes the correct example to #start_example" do
|
||||
group = SpyExample.create_group(5) { |index| nil }
|
||||
group = SpyExample.create_group(5) { |_| nil }
|
||||
suite = new_test_suite(group)
|
||||
spy = SpyFormatter.new
|
||||
runner = Spectator::Runner.new(suite, spectator_test_config(spy))
|
||||
|
@ -125,7 +125,7 @@ describe Spectator::Runner do
|
|||
end
|
||||
|
||||
it "calls #end_example for each example" do
|
||||
group = SpyExample.create_group(5) { |index| nil }
|
||||
group = SpyExample.create_group(5) { |_| nil }
|
||||
suite = new_test_suite(group)
|
||||
spy = SpyFormatter.new
|
||||
runner = Spectator::Runner.new(suite, spectator_test_config(spy))
|
||||
|
@ -175,7 +175,7 @@ describe Spectator::Runner do
|
|||
end
|
||||
|
||||
it "contains the expected time span" do
|
||||
group = SpyExample.create_group(5) { |index| nil }
|
||||
group = SpyExample.create_group(5) { |_| nil }
|
||||
suite = new_test_suite(group)
|
||||
spy = SpyFormatter.new
|
||||
runner = Spectator::Runner.new(suite, spectator_test_config(spy))
|
||||
|
|
|
@ -4,7 +4,7 @@ describe Spectator::TestSuite do
|
|||
describe "#each" do
|
||||
it "yields each example" do
|
||||
group = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
group.children = Array.new(5) do |index|
|
||||
group.children = Array.new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).as(Spectator::ExampleComponent)
|
||||
end
|
||||
test_suite = Spectator::TestSuite.new(group, Spectator::NullExampleFilter.new)
|
||||
|
@ -17,7 +17,7 @@ describe Spectator::TestSuite do
|
|||
|
||||
it "skips examples not in the filter" do
|
||||
group = Spectator::RootExampleGroup.new(Spectator::ExampleHooks.empty, Spectator::ExampleConditions.empty)
|
||||
group.children = Array.new(5) do |index|
|
||||
group.children = Array.new(5) do |_|
|
||||
PassingExample.new(group, Spectator::Internals::SampleValues.empty).as(Spectator::ExampleComponent)
|
||||
end
|
||||
test_suite = Spectator::TestSuite.new(group, Spectator::CompositeExampleFilter.new([] of Spectator::ExampleFilter))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue