Created
August 28, 2011 12:33
-
-
Save wojtekmach/1176619 to your computer and use it in GitHub Desktop.
minitest + shoulda-matchers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem "minitest" | |
require "minitest/spec" | |
require "minitest/autorun" | |
require "active_model" | |
require "turn" | |
require "shoulda-matchers" | |
class MiniTest::Unit::TestCase | |
include Shoulda::Matchers::ActiveModel | |
extend Shoulda::Matchers::ActiveModel | |
end | |
class Post | |
attr_accessor :title | |
include ActiveModel::Validations | |
validates :title, :presence => true, :length => 2..16 | |
end | |
class MiniTest::Spec | |
class << self | |
def it_must &block | |
matcher = yield | |
it "must #{matcher.description}" do | |
result = matcher.matches? subject | |
assert result, matcher.failure_message | |
end | |
end | |
def it_wont &block | |
matcher = yield | |
it "wont #{matcher.description}" do | |
result = matcher.does_not_match? subject | |
assert result, matcher.negative_failure_message | |
end | |
end | |
end | |
end | |
describe "Post" do | |
subject { Post.new } | |
it_must { ensure_length_of(:title).is_at_least(2).is_at_most(16) } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment