Add missing encoding tags
This commit is contained in:
parent
911e8756ee
commit
b64ff4e6a8
6 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
module Mutant
|
||||
class CLI
|
||||
# Abstract base class for strategy builders
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
module Mutant
|
||||
class Matcher
|
||||
# Matcher filter
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
module Mutant
|
||||
# Abstract base class for predicates used to filter subjects / mutations
|
||||
class Predicate
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe Mutant::CLI::Builder::Rspec do
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe Mutant::Matcher::Filter do
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
filter_helpers = proc do
|
||||
|
|
Loading…
Reference in a new issue