Code Monkey home page Code Monkey logo

Comments (9)

thomasklemm avatar thomasklemm commented on May 14, 2024

It would be really awesome if you could prepare a PR!

from pundit.

thomasklemm avatar thomasklemm commented on May 14, 2024

Pundit's RSpec matchers remain unchanged in #106, so I guess this issue is still open. Anyone else having trouble with the matchers in RSpec 3 or could give a hint what needs to be updated?

from pundit.

chrislegault avatar chrislegault commented on May 14, 2024

I'll see if I can actually fix what he was asking for and send another pull request :)

from pundit.

uberllama avatar uberllama commented on May 14, 2024

My pundit matchers were working in RSpec 3 beta1, but not beta2. Then again, beta2 broke half my test suite. :( Bleeding edge...

`failure_message_for_should_not` is deprecated. Use `failure_message_when_negated` instead. Called from /Users/yuval/Documents/webdev/homebuilder-web/spec/support/pundit_matcher.rb:10:in `block in <top (required)>'.

`failure_message_for_should` is deprecated. Use `failure_message` instead. Called from /Users/yuval/Documents/webdev/homebuilder-web/spec/support/pundit_matcher.rb:6:in `block in <top (required)>'.

from pundit.

uberllama avatar uberllama commented on May 14, 2024

Looks like the issue may actually be with Rails 4.1.rc1. I updated that from beta at the same time as rspec. Investigating further.

Yep, all specs passing with rspec beta2 (though I do get those deprecation warnings). Will have to figure out what the hell has changed in Rails 4.1.rc1.

from pundit.

uberllama avatar uberllama commented on May 14, 2024

I tracked down the issue. Very weird.

Here's my cut down policy and policy spec. Basically, an employee can view a Home if they are associated with it.

class HomePolicy < ApplicationPolicy

  def show?
    associated_home?
  end

  private

  def associated_home?
    @associated_home ||= user.homes.exists?(id: record.id)
  end

end
describe HomePolicy do
  subject { HomePolicy.new(user, home) }

  let(:company) { create(:company) }
  let(:home) { create(:home, company: company) }

  context "when employee associated with Home" do
    let(:user) { create(:employee, company: company, home_ids: [home.id]) }

    it { should permit(:show) }
  end

end

This spec fails with Rails 4.1.rc1 (false instead of true).

When I debugged the code, my check against user.homes.exists? was returning false. If I added a reload, it returned true. Alternately, using a before(:each) in the spec rather than associating the homes inline with the User factory also worked:

Fix option 1:

let(:user) { user = create(:employee, company: company); user.homes << home; user }

Fix option 2:

let(:user) { create(:employee, company: company) }
before(:each) do
  user.homes << home
end

from pundit.

uberllama avatar uberllama commented on May 14, 2024

I've submitted an issue to Rails core. 4.1.rc1 is broken.

rails/rails#14116

from pundit.

thomasklemm avatar thomasklemm commented on May 14, 2024

@uberllama I see your bug report helped fix this upstream in Rails. Does that close this issue?

from pundit.

uberllama avatar uberllama commented on May 14, 2024

It does indeed. Sorry, should have closed this one.

from pundit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.