Skip to content

Commit

Permalink
Merge pull request #59 from lowks/elixir_1_4_x
Browse files Browse the repository at this point in the history
Elixir 1 4 x
  • Loading branch information
lowks committed Jul 27, 2017
2 parents a646931 + d3b271d commit 34d63a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: elixir
env:
- MIX_ENV=test
elixir:
- 1.3.3
- 1.4.2
otp_release:
- 17.5
- 18.0
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Radpath.Mixfile do
def project do
[ app: :radpath,
version: @version,
elixir: "~> 1.3.0 or ~> 1.0.2 or ~> 1.1.0",
elixir: "~> 1.4.0 or ~> 1.3.0 or ~> 1.0.2 or ~> 1.1.0",
description: description,
docs: [source_ref: "v#{@version}", main: "Radpath"],
package: package,
Expand Down
6 changes: 3 additions & 3 deletions test/radpath_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -385,10 +385,10 @@ defmodule RadpathTests.RadpathFacts do
use ExUnit.Case
import Radpath, only: [md5sum: 1, sha1sum: 1, parent_path: 1]
test "Test md5sum: md5sum function" do
[h | _]= :os.cmd('md5sum mix.exs')
|> to_string
[h | _]= :os.cmd('md5sum LICENSE')
|> to_string
|> String.split
assert md5sum("mix.exs") == h
assert md5sum("LICENSE") == h
end
test "Test sha1sumsha1sum function" do
[h | _]= :os.cmd('sha1sum mix.exs')
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ defmodule PathHelpers do
Path.expand("fixtures", __DIR__)
end
end
ExUnit.start
# ExUnit.start
# Amrita.start(formatters: [Amrita.Formatter.Documentation])

0 comments on commit 34d63a8

Please sign in to comment.