Displaying 1 result from an estimated 1 matches for "actual_stats_count".
2008 Oct 18
4
Problems when programmatically defining examples
...mmandLine.run(options)
Building the example groups:
examples =
Class.new(Spec::Example::ExampleGroup).describe("Statistics")
@expectations.map do |expectation|
examples.it examples.description do
actual_stats_counters.should expectation
end
end
examples
This is working fine, except for one problem. When I am writing examples for
my app (also using rspec), the examples that are generated within my
application (the inner examples, so to say) are b...