Sha256: f035d5ad39f02ec3b0c60f736701d32467f194a8d500f78c8a0e5506178f65e7
Contents?: true
Size: 1.38 KB
Versions: 6
Compression:
Stored size: 1.38 KB
Contents
# coding: utf-8 require 'spec_helper' describe "Text block" do let(:article) { create(:article) } before(:each) do clean_database visit_article end def visit_article() visit "/admin/articles/#{article.id}/edit"; end def add_block() find_link(I18n.t("redditor.add.text_block")).click; end def submit() find_button("Submit").click; end def save_block() find_link("✔").click; end def delete_block() find_link("✘").click; end it "Saves text block to article", type: :feature, js: true do add_block page.find(".text-block-input").set("test text block") submit expect(page.find("textarea").value).to eq "test text block" end it "Shows validation error if text block content is empty", type: :feature, js: true do add_block submit expect(page.find(".errors")).to have_content "can't be blank" end it "Deletes text block", type: :feature, js: true do article.page.text_blocks.build(body: "123", position: 1).save visit_article delete_block visit_article text_value = begin page.find("textarea").value rescue nil end expect(text_value).to eq nil end it "Saves text block to article on save button", type: :feature, js: true do add_block page.find(".text-block-input").set("test text block") save_block visit_article expect(page.find("textarea").value).to eq "test text block" end end
Version data entries
6 entries across 6 versions & 1 rubygems