blob: ff88a9763f1a690935a0206cb0d388c382cad715 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require File.dirname(__FILE__) + '/../test_helper'
class WorkflowTest < Test::Unit::TestCase
fixtures :workflows
# Replace this with your real tests.
def test_truth
assert_kind_of Workflow, workflows(:first)
end
end
|