Skip to content

Commit

Permalink
Wrapped the matcher and macro up similar to how TB wrote Shoulda
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardarella authored and binarylogic committed Oct 20, 2009
1 parent 3424ecf commit 243075f
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 44 deletions.
37 changes: 0 additions & 37 deletions rspec_matchers/authlogic.rb

This file was deleted.

70 changes: 63 additions & 7 deletions shoulda_macros/authlogic.rb
@@ -1,13 +1,69 @@
# Test::Unit
# Place this file into your test/shoulda_macros directory
#
# Example:
#
# class UserTest
# should_have_authlogic
# end
#
# Rspec
# Place this file into your spec/support/shoulda directory
#
# Example:
#
# describe User do
# it { should have_authlogic }
# end

module Authlogic
module ShouldaMacros
class Test::Unit::TestCase
def self.should_be_authentic
module Shoulda

module Matchers
def have_authlogic
HaveAuthlogic.new
end
alias_method :be_authentic, :have_authlogic

class HaveAuthlogic

def matches?(subject)
subject.respond_to?(:password=) && subject.respond_to?(:valid_password?)
end

def failure_message
"Add the line 'acts_as_authentic' to your model"
end

def description
"have Authlogic"
end
end

end

module Macros
include Matchers

def should_have_authlogic
klass = described_type rescue model_class
should "acts as authentic" do
assert klass.new.respond_to?(:password=)
assert klass.new.respond_to?(:valid_password?)
matcher = HaveAuthlogic.new

should matcher.description do
assert matcher.matches?(klass.new), matcher.failure_message
end
end
alias_method :should_be_authentic, :should_have_authlogic

end

end
end

if defined? Spec
Spec::Runner.configure do |config|
config.include(Authlogic::Shoulda::Matchers)
end
end
else
Test::Unit::TestCase.class_eval { extend Authlogic::Shoulda::Macros }
end

0 comments on commit 243075f

Please sign in to comment.