From: Karen Etheridge Date: Thu, 20 Jun 2013 19:08:31 +0000 (-0700) Subject: remove useless shebangs in tests X-Git-Tag: 0.34~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=commitdiff_plain;h=81a84db6ebe5ec540d0035fc6d1104cc49c81e25 remove useless shebangs in tests --- diff --git a/t/000_load.t b/t/000_load.t index f287b41..c6f6112 100644 --- a/t/000_load.t +++ b/t/000_load.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; @@ -7,4 +5,4 @@ use Test::More tests => 1; BEGIN { use_ok('MooseX::Storage'); -} \ No newline at end of file +} diff --git a/t/001_basic.t b/t/001_basic.t index 1f96199..0e49bfd 100644 --- a/t/001_basic.t +++ b/t/001_basic.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/002_basic_io.t b/t/002_basic_io.t index 7aacd30..b74eeed 100644 --- a/t/002_basic_io.t +++ b/t/002_basic_io.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/002_basic_w_subtypes.t b/t/002_basic_w_subtypes.t index 61e341b..1f99409 100644 --- a/t/002_basic_w_subtypes.t +++ b/t/002_basic_w_subtypes.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/003_basic_w_embedded_objects.t b/t/003_basic_w_embedded_objects.t index ccc7e14..65a5001 100644 --- a/t/003_basic_w_embedded_objects.t +++ b/t/003_basic_w_embedded_objects.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/004_w_cycles.t b/t/004_w_cycles.t index 7987bba..c816b62 100644 --- a/t/004_w_cycles.t +++ b/t/004_w_cycles.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/005_w_versions_and_authority_check.t b/t/005_w_versions_and_authority_check.t index cafb13a..539567e 100644 --- a/t/005_w_versions_and_authority_check.t +++ b/t/005_w_versions_and_authority_check.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/006_w_custom_type_handlers.t b/t/006_w_custom_type_handlers.t index 2a352ad..bc59968 100644 --- a/t/006_w_custom_type_handlers.t +++ b/t/006_w_custom_type_handlers.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/007_false.t b/t/007_false.t index 8a91fd7..fbd80f1 100644 --- a/t/007_false.t +++ b/t/007_false.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/008_do_not_serialize.t b/t/008_do_not_serialize.t index 27afeb1..f262dbd 100644 --- a/t/008_do_not_serialize.t +++ b/t/008_do_not_serialize.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/009_do_not_serialize_lazy.t b/t/009_do_not_serialize_lazy.t index 3a6c9cc..cb76f6b 100644 --- a/t/009_do_not_serialize_lazy.t +++ b/t/009_do_not_serialize_lazy.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/010_basic_json.t b/t/010_basic_json.t index 22b4261..f94acdb 100644 --- a/t/010_basic_json.t +++ b/t/010_basic_json.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/011_basic_json_w_utf8.t b/t/011_basic_json_w_utf8.t index a56dde0..329f64b 100644 --- a/t/011_basic_json_w_utf8.t +++ b/t/011_basic_json_w_utf8.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/012_param_json.t b/t/012_param_json.t index dfa103d..b855ef1 100644 --- a/t/012_param_json.t +++ b/t/012_param_json.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/020_basic_yaml.t b/t/020_basic_yaml.t index a795783..f26e183 100644 --- a/t/020_basic_yaml.t +++ b/t/020_basic_yaml.t @@ -1,4 +1,3 @@ -#!/usr/bin/perl $|++; use strict; use warnings; diff --git a/t/020_basic_yaml_syck.t b/t/020_basic_yaml_syck.t index 42a2368..4a5e284 100644 --- a/t/020_basic_yaml_syck.t +++ b/t/020_basic_yaml_syck.t @@ -1,4 +1,3 @@ -#!/usr/bin/perl $|++; use strict; use warnings; diff --git a/t/020_basic_yaml_xs.t b/t/020_basic_yaml_xs.t index 27592e8..b31ef6c 100644 --- a/t/020_basic_yaml_xs.t +++ b/t/020_basic_yaml_xs.t @@ -1,4 +1,3 @@ -#!/usr/bin/perl $|++; use strict; use warnings; diff --git a/t/030_with_checksum.t b/t/030_with_checksum.t index 0a36b3c..18934f8 100644 --- a/t/030_with_checksum.t +++ b/t/030_with_checksum.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/040_basic_utils.t b/t/040_basic_utils.t index 1b65efd..1079688 100644 --- a/t/040_basic_utils.t +++ b/t/040_basic_utils.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/050_basic_storable.t b/t/050_basic_storable.t index bdf1e7d..8a1ce3f 100644 --- a/t/050_basic_storable.t +++ b/t/050_basic_storable.t @@ -1,4 +1,3 @@ -#!/usr/bin/perl $|++; use strict; use warnings; diff --git a/t/060_basic_deferred.t b/t/060_basic_deferred.t index e99973a..3011b8a 100644 --- a/t/060_basic_deferred.t +++ b/t/060_basic_deferred.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - $|++; use strict; use warnings; diff --git a/t/061_basic_deferred_w_io.t b/t/061_basic_deferred_w_io.t index b0a24ac..0868ad8 100644 --- a/t/061_basic_deferred_w_io.t +++ b/t/061_basic_deferred_w_io.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/070_basic_maybe.t b/t/070_basic_maybe.t index 75e34d2..7d8feb7 100644 --- a/t/070_basic_maybe.t +++ b/t/070_basic_maybe.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/100_io.t b/t/100_io.t index 1fc86a5..361b6a5 100644 --- a/t/100_io.t +++ b/t/100_io.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/101_io_atomic.t b/t/101_io_atomic.t index 67d6714..930b314 100644 --- a/t/101_io_atomic.t +++ b/t/101_io_atomic.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/102_io_storable_file.t b/t/102_io_storable_file.t index c44e43a..2e297a5 100644 --- a/t/102_io_storable_file.t +++ b/t/102_io_storable_file.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/103_io_storable_file_custom.t b/t/103_io_storable_file_custom.t index 71664bb..f87148b 100644 --- a/t/103_io_storable_file_custom.t +++ b/t/103_io_storable_file_custom.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/104_io_w_utf8.t b/t/104_io_w_utf8.t index 72fe8f9..6ddb916 100644 --- a/t/104_io_w_utf8.t +++ b/t/104_io_w_utf8.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/105_io_atomic_w_utf8.t b/t/105_io_atomic_w_utf8.t index bbf8020..83fa41c 100644 --- a/t/105_io_atomic_w_utf8.t +++ b/t/105_io_atomic_w_utf8.t @@ -1,5 +1,3 @@ -#!/usr/bin/perl - use strict; use warnings; diff --git a/t/200_combined_in_roles.t b/t/200_combined_in_roles.t index edeeb65..676dab0 100755 --- a/t/200_combined_in_roles.t +++ b/t/200_combined_in_roles.t @@ -1,4 +1,3 @@ -#/usr/bin/env perl use strict; use warnings; use Test::More tests => 1;