Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing deprecation warning for Rspec #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Dry Rspec is Fun!
= Dry RSpec is Fun!

This gem contains a lot of macros for rails specific purposes. This will only work for Rails 3 above and Rspec 2.0 above. A couple of examples:
This gem contains a lot of macros for rails specific purposes. This will only work for Rails 3 above and RSpec 2.0 above. A couple of examples:


describe User do
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rspec-rails-matchers"
gem.summary = %Q{Rspec 2.0 only rails matchers}
gem.summary = %Q{RSpec 2.0 only rails matchers}
gem.description = %Q{Helps you write rspec with rails for fun}
gem.email = "[email protected]"
gem.homepage = "http://github.com/sinefunc/rspec-rails-matchers"
Expand Down
12 changes: 6 additions & 6 deletions lib/rspec-rails-matchers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@

$LOAD_PATH.unshift(File.expand_path('../', __FILE__))

module RspecRailsMatchers
module RSpecRailsMatchers
autoload :Message, 'rspec_rails_matchers/message'
autoload :Validations, 'rspec_rails_matchers/validations'
autoload :Associations, 'rspec_rails_matchers/associations'
autoload :Behavior, 'rspec_rails_matchers/behavior'
autoload :Sugar, 'rspec_rails_matchers/sugar'
end

Rspec.configure do |c|
c.include RspecRailsMatchers::Validations
c.include RspecRailsMatchers::Associations
c.include RspecRailsMatchers::Behavior
c.include RspecRailsMatchers::Sugar
RSpec.configure do |c|
c.include RSpecRailsMatchers::Validations
c.include RSpecRailsMatchers::Associations
c.include RSpecRailsMatchers::Behavior
c.include RSpecRailsMatchers::Sugar
end
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/associations.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
autoload :Helpers, 'rspec_rails_matchers/associations/helpers'
autoload :HaveMany, 'rspec_rails_matchers/associations/have_many'
Expand Down
8 changes: 4 additions & 4 deletions lib/rspec_rails_matchers/associations/belong_to.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
module BelongTo
def belong_to(association)
Rspec::Matchers::Matcher.new :belong_to, association do |_association_|
extend RspecRailsMatchers::Associations::Helpers
RSpec::Matchers::Matcher.new :belong_to, association do |_association_|
extend RSpecRailsMatchers::Associations::Helpers

match do |model|
associations(model, :belongs_to).any? { |a| a == _association_ }
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to belong to %s", model, _association_ ],
:actual => [ "%s belongs to %s", model, associations(model, :belongs_to) ]
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
module HaveAndBelongToMany
def have_and_belong_to_many(association)
Rspec::Matchers::Matcher.new :have_and_belong_to_many, association do |_association_|
extend RspecRailsMatchers::Associations::Helpers
RSpec::Matchers::Matcher.new :have_and_belong_to_many, association do |_association_|
extend RSpecRailsMatchers::Associations::Helpers

match do |model|
associations(model, :has_and_belongs_to_many).any? { |a| a == _association_ }
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to have and belong to %s", model, _association_ ],
:actual => [ "%s has and belongs to %s", model, associations(model, :has_and_belongs_to_many) ]
)
Expand Down
8 changes: 4 additions & 4 deletions lib/rspec_rails_matchers/associations/have_many.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
module HaveMany
def have_many(association)
Rspec::Matchers::Matcher.new :have_many, association do |_association_|
extend RspecRailsMatchers::Associations::Helpers
RSpec::Matchers::Matcher.new :have_many, association do |_association_|
extend RSpecRailsMatchers::Associations::Helpers

match do |model|
associations(model, :has_many).any? { |a| a == _association_ }
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to have have many %s", model, _association_ ],
:actual => [ "%s has many %s", model, associations(model, :has_many) ]
)
Expand Down
8 changes: 4 additions & 4 deletions lib/rspec_rails_matchers/associations/have_one.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
module HaveOne
def have_one(association)
Rspec::Matchers::Matcher.new :have_one, association do |_association_|
extend RspecRailsMatchers::Associations::Helpers
RSpec::Matchers::Matcher.new :have_one, association do |_association_|
extend RSpecRailsMatchers::Associations::Helpers

match do |model|
associations(model, :has_one).any? { |a| a == _association_ }
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to have one %s", model, _association_ ],
:actual => [ "%s has one %s", model, associations(model, :has_one) ]
)
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/associations/helpers.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Associations
module Helpers
def associations( model, type )
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/behavior.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Behavior
autoload :Lint, 'rspec_rails_matchers/behavior/lint'

Expand Down
4 changes: 2 additions & 2 deletions lib/rspec_rails_matchers/behavior/lint.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Behavior
module Lint
share_as :AnActiveModel do
def be_a_boolean
Rspec::Matchers::Matcher.new :be_a_boolean do
RSpec::Matchers::Matcher.new :be_a_boolean do
match do |value|
[ true, false ].include?( value )
end
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/message.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Message
def self.error( options = {} )
msg = %(expected #{transform(options[:expected])})
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/sugar.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Sugar
def self.included( rspec )
rspec.extend ClassContextMethods
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_rails_matchers/validations.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
autoload :PresenceOf, 'rspec_rails_matchers/validations/presence_of'
autoload :NumericalityOf, 'rspec_rails_matchers/validations/numericality_of'
Expand Down
6 changes: 3 additions & 3 deletions lib/rspec_rails_matchers/validations/confirmation_of.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
module ConfirmationOf
def validate_confirmation_of(attribute)
Rspec::Matchers::Matcher.new :validate_confirmation_of, attribute do |_attr_|
RSpec::Matchers::Matcher.new :validate_confirmation_of, attribute do |_attr_|
match do |model|
if model.respond_to?("#{_attr_}_confirmation=")
model.send("#{_attr_}=", 'asdf')
Expand All @@ -16,7 +16,7 @@ def validate_confirmation_of(attribute)
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to validate confirmation of %s", model, _attr_ ]
)
end
Expand Down
6 changes: 3 additions & 3 deletions lib/rspec_rails_matchers/validations/length_of.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
module LengthOf
def validate_length_of(attribute, options)
options.assert_valid_keys( :within, :minimum, :maximum )

min, max = min_max_for(options)

Rspec::Matchers::Matcher.new :validate_length_of, attribute do |_attribute_|
RSpec::Matchers::Matcher.new :validate_length_of, attribute do |_attribute_|
match do |model|
validates_minimum?(model, min, _attribute_) &&
validates_maximum?(model, max, _attribute_)
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected =>
[ "%s to validate length of %s, %s", model, _attribute_, options ]
)
Expand Down
6 changes: 3 additions & 3 deletions lib/rspec_rails_matchers/validations/numericality_of.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
module NumericalityOf
def validate_numericality_of( attribute, options = {} )
Rspec::Matchers::Matcher.new :validate_numericality_of, attribute do |_attr_|
RSpec::Matchers::Matcher.new :validate_numericality_of, attribute do |_attr_|
match do |model|
invalid_on_non_numeric?(model, _attr_) &&
(options[:allow_blank] == true ?
Expand All @@ -11,7 +11,7 @@ def validate_numericality_of( attribute, options = {} )
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected =>
[ "%s to validate numericality of %s, %s", model, _attr_, options ]
)
Expand Down
6 changes: 3 additions & 3 deletions lib/rspec_rails_matchers/validations/presence_of.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
module PresenceOf
def validate_presence_of(attribute)
Rspec::Matchers::Matcher.new :validate_presence_of, attribute do |_attr_|
RSpec::Matchers::Matcher.new :validate_presence_of, attribute do |_attr_|
match do |model|
model.send("#{_attr_}=", nil)
model.invalid? && model.errors[_attr_].any?
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected => [ "%s to validate presence of %s", model, _attr_ ]
)
end
Expand Down
6 changes: 3 additions & 3 deletions lib/rspec_rails_matchers/validations/uniqueness_of.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module RspecRailsMatchers
module RSpecRailsMatchers
module Validations
module UniquenessOf
def validate_uniqueness_of(attribute, options = {})
Rspec::Matchers::Matcher.new :validate_uniqueness_of, attribute do |_attr_|
RSpec::Matchers::Matcher.new :validate_uniqueness_of, attribute do |_attr_|
match do |model|
duplicate = create_duplicate_record(model, _attr_, options[:scope])

Expand All @@ -19,7 +19,7 @@ def validate_uniqueness_of(attribute, options = {})
end

failure_message_for_should do |model|
RspecRailsMatchers::Message.error(
RSpecRailsMatchers::Message.error(
:expected =>
[ "%s to validate uniqueness of %s, %s", model, _attr_, options ]
)
Expand Down
2 changes: 1 addition & 1 deletion rspec-rails-matchers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Rspec 2.0 only rails matchers}
s.summary = %q{RSpec 2.0 only rails matchers}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
Expand Down