Sha256: 8910d1e854f591c179bd26191493290e4c783f00053b9366ad5878cdabbd8970

Contents?: true

Size: 362 Bytes

Versions: 3

Compression:

Stored size: 362 Bytes

Contents

require 'test_helper'

class UserTest < ActiveSupport::TestCase


  #### not much of a test, all the good testing is done at the gem level, this
  #### just tests if it blows up in rails
  test "nothing blows up in rails model" do

    user = User.new
    clog user.email = "test@example.com"
    clog user.password = "not encrypted"
    clog user

  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
clog-0.2.0 test/common/unit/user_test.rb
clog-0.1.1 test/common/unit/user_test.rb
clog-0.1.0 test/common/unit/user_test.rb