require File.dirname(__FILE__) + '/../test_helper'

class QueryTest < Test::Unit::TestCase
  fixtures :queries

  def setup
    @query = Query.find(1)
  end

  # Replace this with your real tests.
  def test_truth
    assert_kind_of Query,  @query
  end
end
