# This integration test was built after reading Rails Recipe #43,
# and the style of this test was taken from that recipe.
# Chad Fowler's book "Rails Recipes" is highly recommended.

require "#{File.dirname(__FILE__)}/../test_helper"

class StoriesTest < ActionController::IntegrationTest
  fixtures :users

  # Replace this with your real tests.
  def test_truth
    assert true
  end
end
