I'm new to BDD and I'm trying to play with MiniTest Spec:
require 'minitest/spec'
require 'minitest/autorun'
class Car
attr_accessor :type
def initialize(type)
@type = 'petrol'
end
end
describe Array do
it "must be diesel" do
Car.new('diesel').type.must_equal 'diesel'
end
end
This is great - running this I get the following output:
Failure:
test_0001_must_be_diesel(ArraySpec):
Expected "diesel", not "petrol".
Which makes sense - "Expected diesel, not petrol" is exactly what I'm expecting. If I place a second parameter in my must_equal statement (which I assume is the message I want to return on failure) - I get an odd result:
require 'minitest/spec'
require 'minitest/autorun'
class Car
attr_accessor :type
def initialize(type)
@type = 'petrol'
end
end
describe Array do
it "must be diesel" do
Car.new('diesel').type.must_equal 'diesel', 'it must be a diesel'
end
end
Running this I get:
1) Failure:
test_0001_must_be_diesel(ArraySpec):
it must be a diesel.
Expected "petrol", not "diesel".
For some reason, now it says "Expected petrol not diesel". So it seems that adding in what I assume is a message parameter (as it is in the Test Unit version) is making the assertion flip around.
Is the idea of a message param in the speccing framework void?