Last active
October 26, 2015 15:05
-
-
Save hyoshida/7e317a2ba3cbeef5c8dd to your computer and use it in GitHub Desktop.
Rspec one-liner that tests named scopes in Rails.
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
# Based on http://stackoverflow.com/questions/6853744/how-can-i-have-rspec-test-for-my-default-scope/6853925#6853925 | |
# | |
# ### Example | |
# | |
# class User < ActiveRecord::Base | |
# scope :recent, -> { order(created_at: :desc).limit(10) } | |
# end | |
# | |
# describe User do | |
# it { is_expected.to scope(:recent) { order(created_at: :desc).limit(10) } } | |
# end | |
# | |
RSpec::Matchers.define :scope do |scope| | |
define_method :actual_for do |subject| | |
subject.class.send(scope).to_sql | |
end | |
define_method :expected_for do |subject| | |
subject.class.instance_eval(&block_arg).to_sql | |
end | |
define_method :diff do |actual, expected| | |
RSpec::Support::Differ.new.diff_as_string(actual.split.join("\n"), expected.split.join("\n")) | |
end | |
match do |subject| | |
actual_for(subject) == expected_for(subject) | |
end | |
failure_message do |subject| | |
expected = expected_for(subject) | |
actual = actual_for(subject) | |
"expected the scope as `#{expected}`, but builds `#{actual}`" + diff(actual, expected) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment