File: model_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 432 kB
  • sloc: ruby: 2,527; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require_relative 'test_helper'
require_relative 'files/models/post'

class ModelTest < ActiveSupport::TestCase
  def test_should_have_draft_state_in_defaut_machine
    assert_equal 'draft', Post.new.state
  end

  def test_should_have_the_correct_integration
    assert_equal StateMachines::Integrations::ActiveRecord, StateMachines::Integrations.match(Post)
  end
end