I try to practice to making some tests using Rspec and I have a weird comportment. When I try to have an invalid model to follow the Red/Green/Refactor cycle, Rspec doesn't see any error.
I want to ensure release can't have an anterior date.
My model
class Release < ActiveRecord::Base
belongs_to :game
belongs_to :platform
attr_accessible :date
validates :date, presence: true
end
My spec file
require 'spec_helper'
describe Release do
before {@release = Release.new(date: Time.new(2001,2,3))}
it{should respond_to :date}
it{should respond_to :game}
it{should respond_to :platform}
describe "when date is not present" do
before {@release.date = nil}
it {should_not be_valid}
end
describe "when date is anterior" do
before {@release.date = Time.now.prev_month}
it {should_not be_valid}
end
end
My output
.....
Finished in 0.04037 seconds
5 examples, 0 failures
Any idea ?