在Sinatra - 有没有人使用测试夹具?你的测试套件是如何设置的?

时间:2010-05-14 17:51:15

标签: testing sinatra rack

我来自Ruby / Rails世界。我正在Sinatra项目上进行测试(使用Rack :: Test)。我通常在测试中使用Fixtures。 Sinatra有等价物吗?

人们如何设置他们的Sinatra测试套件(在基本的helloworld示例之外,这是我能为Sinatra测试找到的唯一例子)。

谢谢!

2 个答案:

答案 0 :(得分:4)

我使用Machinist(和Rails,也讨厌YAML灯具。)

答案 1 :(得分:1)

ActiveRecord包括对灯具的支持,你只需要在test_helper.rb中连接它们。

# test/test_helper.rb
require_relative '../app'
require 'minitest/autorun'
require 'active_record'

ActiveRecord::Base.establish_connection(:test)

class ActiveSupport::TestCase
  include ActiveRecord::TestFixtures
  include ActiveRecord::TestFixtures::ClassMethods

  class << self
    def fixtures(*fixture_set_names)
      self.fixture_path = 'test/fixtures'
      super *fixture_set_names
    end
  end

  self.use_transactional_fixtures = true
  self.use_instantiated_fixtures  = false
end

然后你可以在测试类上使用fixture。

# test/unit/blog_test.rb
require_relative '../test_helper'

class BlogTest < ActiveSupport::TestCase
  fixtures :blogs

  def test_create
    blog = Blog.create(:name => "Rob's Writing")
    assert_equal "Rob's Writing", blog.name
  end

  def test_find
    blog = Blog.find_by_name("Jimmy's Jottings")
    assert_equal "Stuff Jimmy says", blog.tagline
  end
end

配置Rake以在正确的位置查找测试。

# Rakefile
require_relative './app'
require 'rake'
require 'rake/testtask'
require 'sinatra/activerecord/rake'

Rake::TestTask.new do |t|
  t.pattern = "test/**/*_test.rb"
end

task default: :test

我发布了small example application来演示使用Sinatra,ActiveRecord和测试装置。