Skip to content

Commit

Permalink
Fix RswiftCoreTests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlokhorst committed May 2, 2017
1 parent c14c568 commit 44db782
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ let package = Package(
name: "rswift",
targets: [
Target(
name: "rswift",
dependencies: ["RswiftCore"]
name: "rswift",
dependencies: ["RswiftCore"]
),
Target(name: "RswiftCore"),
Target(
name: "RswiftCoreTests",
dependencies: ["RswiftCore"]
),
Target(name: "RswiftCore")
],
dependencies: [
.Package(url: "https://github.com/kylef/Commander.git", majorVersion: 0, minor: 6),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
// Adapted from https://gist.github.com/efirestone/ce01ae109e08772647eb061b3bb387c3

import XCTest
@testable import RswiftCore

class GlobTests : XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
//

import XCTest
@testable import RswiftCore

class MainTests: XCTestCase {
override func setUp() {
Expand Down

0 comments on commit 44db782

Please sign in to comment.