File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 11.PHONY : magic
22
3- PROJ = FSValue
3+ PROJ = ValueCodable
44proj = $(shell echo $(PROJ ) | tr A-Z a-z)
55
66clean :
Original file line number Diff line number Diff line change 44import PackageDescription
55
66let package = Package (
7- name: " FSValue " ,
7+ name: " ValueCodable " ,
88 products: [
99 // Products define the executables and libraries produced by a package, and make them visible to other packages.
1010 . library(
11- name: " FSValue " ,
12- targets: [ " FSValue " ] ) ,
11+ name: " ValueCodable " ,
12+ targets: [ " ValueCodable " ] ) ,
1313 ] ,
1414 dependencies: [
1515 . package ( url: " https://github.com/jpsim/Yams.git " , from: " 1.0.0 " ) ,
@@ -18,10 +18,10 @@ let package = Package(
1818 // Targets are the basic building blocks of a package. A target can define a module or a test suite.
1919 // Targets can depend on other targets in this package, and on products in packages which this package depends on.
2020 . target(
21- name: " FSValue " ,
21+ name: " ValueCodable " ,
2222 dependencies: [ ] ) ,
2323 . testTarget(
24- name: " FSValueTests " ,
25- dependencies: [ " FSValue " , " Yams " ] ) ,
24+ name: " ValueCodableTests " ,
25+ dependencies: [ " ValueCodable " , " Yams " ] ) ,
2626 ]
2727)
Original file line number Diff line number Diff line change 1- # FSValue
1+ # ValueCodable
22
3- [ ![ Build Status] ( https://travis-ci.com/finestructure/FSValue .svg?branch=develop )] ( https://travis-ci.com/finestructure/FSValue )
3+ [ ![ Build Status] ( https://travis-ci.com/finestructure/ValueCodable .svg?branch=develop )] ( https://travis-ci.com/finestructure/ValueCodable )
44
55A Value struct to decode arbitrary data.
File renamed without changes.
Original file line number Diff line number Diff line change 44
55import XCTest
66
7- @testable import FSValueTests
7+ @testable import ValueCodableTests
88
99// swiftlint:disable trailing_comma
10- extension FSValueTests {
11- static var allTests : [ ( String , ( FSValueTests ) -> ( ) throws -> Void ) ] = [
10+ extension ValueCodableTests {
11+ static var allTests : [ ( String , ( ValueCodableTests ) -> ( ) throws -> Void ) ] = [
1212 ( " test_decodeBasicTypes " , test_decodeBasicTypes) ,
1313 ( " test_encodeBasicTypes " , test_encodeBasicTypes) ,
1414 ( " test_null_json " , test_null_json) ,
@@ -22,6 +22,6 @@ extension FSValueTests {
2222}
2323
2424XCTMain ( [
25- testCase ( FSValueTests . allTests) ,
25+ testCase ( ValueCodableTests . allTests) ,
2626] )
2727// swiftlint:enable trailing_comma
Original file line number Diff line number Diff line change 11import XCTest
22import Yams
33
4- @testable import FSValue
4+ @testable import ValueCodable
55
66
7- final class FSValueTests : XCTestCase {
7+ final class ValueCodableTests : XCTestCase {
88
99 func test_decodeBasicTypes( ) throws {
1010 let s = """
You can’t perform that action at this time.
0 commit comments