-
-
Notifications
You must be signed in to change notification settings - Fork 765
preprocessing examples (and metadata) #969
Comments
Tagging mostly means we're just not going to look at it until RSpec 3, not that we've planned it, in any case your previous suggestion in #948 is already doable, which leads me to maybe think something along these lines is possible. So could you try something for me? Does this pull in the sauce labs code for js tags? (Although I'd imagine it will only run the tests tagged with js)
|
This should be possible when your module is included: module Super
module Awesome
def self.included(klass)
klass.class_exec do
metadata[:awesome] = :super
end
end
end
end
RSpec.configure do |c|
c.include Super::Awesome, js: true # Adds awesome: :true
end Or if you use module Super
module Awesome
extend ActiveSupport::Concern
included do
metadata[:awesome] = :super
end
end
end |
You can try @cupakromer's suggestion, but I'm not convinced that will trigger the code inclusion you want here, incidentally you could also ask sauce labs to allow you to customise which tag is required :p (Also please don't use |
😝 🙈 I only added the AS::Concern as an example of how it could be added in to an already larger module using it, wasn't advocating it's use for this sole purpose. |
We get enough bug reports that are due to Rails as is without adding |
@rweng Do you have any results to report back from trying the suggestions? |
@mikegee nope, we paused the saucelabs integration brauch and shifted focus. It's still on the roadmap though. |
Is this still an issue with RSpec 3? |
We haven't done anything to address this yet. @rweng -- do you have an example of what kind of preprocessing API you would like? |
I am not really into the matter anymore. What I think would be nice is being able to access the tests directly, reading their metadata, title, group etc and enabling/disabling them based that. |
Hi,
https://github.com/sauce-labs/sauce_ruby requires everything annotated with
:js
to be annotated with:sauce => true
too if it should run on saucelabs. Now I wonder if I can preprocess examples and add thesauce: true
if:js
is set.I had a similar issue that was regarding preprocessing (#948). It was labeled rspec-3, so maybe what I am looking for now is also rspec-3. Is there a planned timeline for this?
Thanks,
Robin
The text was updated successfully, but these errors were encountered: