Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Add Test File
Browse files Browse the repository at this point in the history
  • Loading branch information
SalGnt committed Sep 28, 2015
1 parent 7e9c346 commit 1523a22
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions t/Homebrew.t
@@ -0,0 +1,42 @@
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use DDG::Test::Spice;

ddg_spice_test(
[qw( DDG::Spice::Homebrew )],
'brew wget' => test_spice(
'/js/spice/homebrew/wget',
call_type => 'include',
caller => 'DDG::Spice::Homebrew',
is_cached => 1
),
'brew install wget' => test_spice(
'/js/spice/homebrew/wget',
call_type => 'include',
caller => 'DDG::Spice::Homebrew',
is_cached => 1
),
'homebrew wget' => test_spice(
'/js/spice/homebrew/wget',
call_type => 'include',
caller => 'DDG::Spice::Homebrew',
is_cached => 1
),
'wget brew' => test_spice(
'/js/spice/homebrew/wget',
call_type => 'include',
caller => 'DDG::Spice::Homebrew',
is_cached => 1
),
'wget homebrew' => test_spice(
'/js/spice/homebrew/wget',
call_type => 'include',
caller => 'DDG::Spice::Homebrew',
is_cached => 1
)
);

done_testing;

0 comments on commit 1523a22

Please sign in to comment.