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

21 lines
397 B
Ruby
Raw Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
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
2019-03-26 15:32:20 +00:00
test 'La usuaria puede encontrarse por su mail' do
2018-04-27 18:48:26 +00:00
assert_equal @mail, @usuaria.username
end
2019-03-26 15:32:20 +00:00
test 'La usuaria tiene sitios' do
2018-04-27 18:48:26 +00:00
@usuaria.sites.each do |s|
assert_equal Site, s.class
end
end
end