obsolete.ChilliProject/test/unit/principal_drop_test.rb

16 lines
315 B
Ruby

require File.expand_path('../../test_helper', __FILE__)
class PrincipalDropTest < ActiveSupport::TestCase
def setup
@principal = Principal.generate!
@drop = @principal.to_liquid
end
context "#name" do
should "return the name" do
assert_equal @principal.name, @drop.name
end
end
end