I know. This is discouraged. For reasons I won\'t get into, I need to run my tests in the order they are written. According to the documentation, if my test class (we\'ll c
If you just add test_order: alpha to your test class, the tests will run in order:
class TestHomePage def self.test_order :alpha end def test_a puts "a" end def test_b puts "b" end end