Skip to content

Instantly share code, notes, and snippets.

@rbarazi
Created April 7, 2010 02:14
Show Gist options
  • Save rbarazi/358401 to your computer and use it in GitHub Desktop.
Save rbarazi/358401 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 10-5. The create article test in test/unit/article_test.rb
require 'test_helper'
class ArticleTest < ActiveSupport::TestCase
test "should create article" do
article = Article.new
article.user = users(:eugene)
article.title = "Test article"
article.body = "Test body"
assert article.save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment