I've looked around online a bit but cannot find any examples of (or evidence that it is even possible to) have RSpec run a set of specs listed in an arbitrary file as some other test frameworks can do. I don't really want to build a command line that is thousands of characters long in order to run many specific tests but I can easily stick the list of specs that I want to run in a file like this:
``` path/to/some_spec.rb[1:1:1] path/to/some_spec.rb[1:2:1] path/to/some_other_spec.rb[3:1] ... etc. ``` Does RSpec have a mechanism that can handle that kind of input or am I limited to just specifying files and patterns on the command line? Thanks, Eric K -- You received this message because you are subscribed to the Google Groups "rspec" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rspec/57caa466-7463-4571-ad87-ed56bffeb4d3%40googlegroups.com.
