Sha256: 3c76deb54fea15a5fb045c92652f6cbdd0f48c490856a8280055bfeffa2729cd
Contents?: true
Size: 994 Bytes
Versions: 14
Compression:
Stored size: 994 Bytes
Contents
require 'rails_helper' describe ActiveAdmin::Views::ActionListPopover do let(:the_popover) do arbre { action_list_popover id: "my_awesome_action_list_popover" do action "My First Great Action", "#" action "My Second Great Action", "http://www.google.com" end }.children.first end it "should have an id" do expect(the_popover.id).to eq "my_awesome_action_list_popover" end describe "the action list" do subject do the_popover.find_by_class("popover_contents").first end describe '#tag_name' do subject { super().tag_name } it { is_expected.to eql("ul") } end describe '#content' do subject { super().content } it{ is_expected.to include("<li><a href=\"#\">My First Great Action</a></li>") } end describe '#content' do subject { super().content } it{ is_expected.to include("<li><a href=\"http://www.google.com\">My Second Great Action</a></li>") } end end end
Version data entries
14 entries across 14 versions & 2 rubygems