5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 16:56:22 +00:00
panel/test/models/usuaria_test.rb

19 lines
366 B
Ruby
Raw Normal View History

2018-04-27 18:48:26 +00:00
require 'test_helper'
class UsuariaTest < ActiveSupport::TestCase
setup do
@mail = 'f@kefir.red'
@usuaria = Usuaria.find(@mail)
end
test "La usuaria puede encontrarse por su mail" do
assert_equal @mail, @usuaria.username
end
test "La usuaria tiene sitios" do
@usuaria.sites.each do |s|
assert_equal Site, s.class
end
end
end