robert.postill
2019-2-11 03:58:41

Hi, I’m looking at writing some tests in rackunit and I want to make the tests optional so that the test suite will pass CI without running the extra tests. However at times I would like to run the extra tests and make sure if they’re enabled then they fail CI.


robert.postill
2019-2-11 03:58:51

In ruby using the rspec gems you can mark tests as pending (see https://relishapp.com/rspec/rspec-core/v/2-0/docs/pending/pending-examples) so that’s my frame of reference.