How to test scripts in the lib directory of Rails?

I have a script called query.rb inside my lib folder in Rails 3. I am
writing a spec test for it. Though I’m no sure how to reference the
Query class from my tests. Whenever I use Query, RSpec complain that
it’s not able to find it.

This is how I wrote it:

before(:each) do
  query  = Query.new
end

How can I make sure that Query is accessible by the spec?

Hey Volkan. Make sure to “require” the file that your Query class is in.
Usually this is done at the top of query_spec.rb , or in spec_helper.rb
.

Cheers,
Nick

D’oh! Thanks Nick!