Code Monkey home page Code Monkey logo

Comments (8)

r1chardj0n3s avatar r1chardj0n3s commented on May 24, 2024

It seems like, for the sake of avoiding preventable errors like the above, it might be sensible for us to check for the decorated function's name and prevent the decoration of one called "step" (for the "step" decorator, and similar checks for the other decorators.)

from behave.

r1chardj0n3s avatar r1chardj0n3s commented on May 24, 2024

Sorry quantoid, I didn't actually give you useful advice. You will need to either use one of the other step function decorators (@given, @when, etc.) or rename your function so it's not called "step".

from behave.

quantoid avatar quantoid commented on May 24, 2024

Thanks, I figured that the actual function name doesn't matter so I should just call it "doit()" or something. Just something that perhaps should be pointed out in the tutorial.

Also a bit annoying that PyDev (in Eclipse) warns about the undefined decorators because they're dynamically added to globals rather than statically declared. But that's more a problem with PyDev than Behave.

from behave.

r1chardj0n3s avatar r1chardj0n3s commented on May 24, 2024

On 31 July 2012 11:28, quantoid
[email protected]
wrote:

Also a bit annoying that PyDev (in Eclipse) warns about the undefined decorators because they're dynamically added to globals rather than statically declared. But that's more a problem with PyDev than Behave.

If you want to make PyDev happy you may import the decorators into
your code with "from behave import step" (or any of the other
decorator names)

from behave.

quantoid avatar quantoid commented on May 24, 2024

That would be nice, but Eclipse says "unresolved import" because they're not declared in the behave module, they're dynamically added to globals.

from behave.

r1chardj0n3s avatar r1chardj0n3s commented on May 24, 2024

On 31 July 2012 13:48, quantoid
[email protected]
wrote:

That would be nice, but Eclipse says "unresolved import" because they're not declared in the behave module, they're dynamically added to globals.

Eclipse r dumb then :-) [seriously, the names are declared in the
behave package all - that should be enough for it to be happy with

  • file a bug report against them ;-)]

from behave.

quantoid avatar quantoid commented on May 24, 2024

Yeah, but all is only assigned when the code runs, and Eclipse/PyDev doesn't run the code, it just does static analysis, e.g. looking for def declarations. Why not put the decorators in module scope rather than global? And declare them with def since there's only four? Probably a dumb question.

from behave.

r1chardj0n3s avatar r1chardj0n3s commented on May 24, 2024

On 31 July 2012 19:17, quantoid
[email protected]
wrote:

Yeah, but all is only assigned when the code runs, and Eclipse/PyDev doesn't run the code, it just does static analysis, e.g. looking for def declarations. Why not put the decorators in module scope rather than global? And declare them with def since there's only four? Probably a dumb question.

Global scopes belong to modules; that is, the module scope and global
scope are the same thing.

from behave.

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.