1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# -*- coding: utf-8 -*-
require 'spec_helper'
describe "Referentials", :type => :feature do
login_user
let(:referential) { Referential.first }
describe "index" do
# FIXME #823
# it "should support no referential" do
# visit referentials_path
# expect(page).to have_content("Jeux de Données")
# end
context "when several referentials exist" do
def retrieve_referential_by_slug( slug)
@user.organisation.referentials.find_by_slug(slug) ||
create(:referential, :slug => slug, :name => slug, :organisation => @user.organisation)
end
let!(:referentials) { [ retrieve_referential_by_slug("aa"),
retrieve_referential_by_slug("bb")] }
# FIXME #823
# it "should show n referentials" do
# visit referentials_path
# expect(page).to have_content(referentials.first.name)
# expect(page).to have_content(referentials.last.name)
# end
end
end
describe "show" do
before(:each) { visit referential_path(referential) }
it "displays referential" do
expect(page).to have_content(referential.name)
end
context 'archived referential' do
it 'link to edit referetnial is not displayed' do
referential.archive!
visit referential_path(referential)
expect(page).not_to have_link(I18n.t('actions.edit'), href: edit_referential_path(referential))
end
end
context 'unarchived referential' do
it 'link to edit referetnial is displayed' do
expect(page).to have_link(I18n.t('actions.edit'), href: edit_referential_path(referential))
end
end
end
describe "create" do
it "should" do
visit new_referential_path
fill_in "Nom", :with => "Test"
fill_in "Code", :with => "test"
fill_in "Point haut/droite de l'emprise par défaut", :with => "0.0, 0.0"
fill_in "Point bas/gauche de l'emprise par défaut", :with => "1.0, 1.0"
click_button "Valider"
expect(Referential.where(:name => "Test")).not_to be_nil
# CREATE SCHEMA
end
end
describe "destroy" do
let(:referential) { create(:referential, :organisation => @user.organisation) }
it "should remove referential" do
visit referential_path(referential)
#click_link "Supprimer"
#expect(Referential.where(:slug => referential.slug)).to be_blank
end
end
end
|