Giter Club home page Giter Club logo

Comments (4)

sunny avatar sunny commented on July 22, 2024 2

Great thorough article! I’ve added it to the list of resources on the wiki

from actor.

fidalgo avatar fidalgo commented on July 22, 2024 1

For those landing here but living on the minitest land: https://fidalgo.pt/2023/07/23/service-objects-in-the-wild.html
(shameless plug)

from actor.

sunny avatar sunny commented on July 22, 2024 1

I’m closing this issue, but feel free to discuss/reopen if you think of a better way to handle this.

from actor.

sunny avatar sunny commented on July 22, 2024

RSpec couldn’t be able to know what methods are defined on results since these methods only make sense at the end, once it’s passed through different actors.

For your example, it would make sense to define an error method on ServiceActor::Result for this specific use case, as it’s an encouraged output name:

class ServiceActor::Result
  def error
    to_h[:error]
  end
end

However, this still wouldn’t work for other defined outputs.

You could use an instance_double and stub expected outputs with allow:

let(:result) { instance_double ServiceActor::Result, success?: false }

before do
  allow(Google::AutocompletePlaces).to receive(:result).and_return(result)
  allow(result).to receive(:error).and_return("lol")
end

In my case, though, I simply use double in these cases and disable this cop, since it can’t know when we can and cannot check the methods beforehand:

RSpec/VerifiedDoubles:
  # Allow the use of `double`.
  Enabled: false

from actor.

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.