Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • guard-org/guard
1 result
Show changes
Commits on Source (4)
Loading
Loading
@@ -138,11 +138,11 @@ RSpec.describe Guard::DslDescriber do
terminal_title: ::Notiffany::Notifier::TerminalTitle
)
 
allow(Guard::Notifier).to receive(:connect).once.ordered
allow(Guard::Notifier).to receive(:connect).once
allow(Guard::Notifier).to receive(:detected).
and_return([{ name: :gntp, options: { sticky: true } }])
 
allow(Guard::Notifier).to receive(:disconnect).once.ordered
allow(Guard::Notifier).to receive(:disconnect).once
end
 
it "properly connects and disconnects" do
Loading
Loading
Loading
Loading
@@ -34,6 +34,7 @@ RSpec.describe Guard::PluginUtil do
gem = class_double(Gem::Specification)
stub_const("Gem::Specification", gem)
expect(Gem::Specification).to receive(:find_all) { gems }
allow(Gem::Specification).to receive(:unresolved_deps) { [] }
end
 
it "returns the list of guard gems" do
Loading
Loading