Skip to content

Commit

Permalink
Update the testify library
Browse files Browse the repository at this point in the history
The location of the library changed, had to recreate the submodule.
  • Loading branch information
jasonroelofs committed Mar 28, 2014
1 parent dc6c355 commit 228bcfa
Show file tree
Hide file tree
Showing 39 changed files with 40 additions and 54 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Expand Up @@ -4,9 +4,9 @@
[submodule "src/github.com/go-gl/gl"]
path = src/github.com/go-gl/gl
url = git://github.com/go-gl/gl.git
[submodule "src/github.com/stretchrcom/testify"]
path = src/github.com/stretchrcom/testify
url = git://github.com/stretchrcom/testify.git
[submodule "src/github.com/go-gl/glfw3"]
path = src/github.com/go-gl/glfw3
url = git://github.com/go-gl/glfw3.git
[submodule "src/github.com/stretchr/testify"]
path = src/github.com/stretchr/testify
url = git://github.com/stretchr/testify.git
16 changes: 1 addition & 15 deletions Rakefile
Expand Up @@ -23,8 +23,7 @@ LIBRARIES = %w(
github.com/go-gl/gl
github.com/go-gl/glu
github.com/go-gl/glfw3
github.com/stretchrcom/testify
github.com/stretchrcom/testify/assert
github.com/stretchr/testify
)

EXTERNAL_LIBS = %w(
Expand Down Expand Up @@ -71,19 +70,6 @@ namespace :build do
end
end

task :update => "update:all"
namespace :update do
desc "Update all installed libraries"
task :all => LIBRARIES.map {|l| l.split("\/").last }

LIBRARIES.each do |library|
desc "Update the library [#{library}]"
task library.split("\/").last do
shell "go get -u #{library}"
end
end
end

task :test => "test:all"
namespace :test do
desc "Run all the tests. Also runnable as just 'test'"
Expand Down
2 changes: 1 addition & 1 deletion src/behaviors/animation_test.go
Expand Up @@ -3,7 +3,7 @@ package behaviors
import (
"components"
"core"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/behaviors/graphical_test.go
Expand Up @@ -3,7 +3,7 @@ package behaviors
import (
"components"
"core"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"render"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion src/behaviors/input_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"components"
"core"
"events"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"input"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/behaviors/transform_test.go
Expand Up @@ -3,7 +3,7 @@ package behaviors
import (
"components"
"core"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/animation_test.go
@@ -1,7 +1,7 @@
package components

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/input_test.go
@@ -1,7 +1,7 @@
package components

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/components/transform_test.go
@@ -1,7 +1,7 @@
package components

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/visual_test.go
@@ -1,7 +1,7 @@
package components

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/configs/configs_test.go
@@ -1,7 +1,7 @@
package configs

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/core/camera_test.go
Expand Up @@ -2,7 +2,7 @@ package core

import (
"components"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/core/entity_db_test.go
Expand Up @@ -2,7 +2,7 @@ package core

import (
"components"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/core/entity_set_test.go
@@ -1,7 +1,7 @@
package core

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/core/entity_test.go
Expand Up @@ -2,7 +2,7 @@ package core

import (
"components"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/events/event_test.go
@@ -1,7 +1,7 @@
package events

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/factories/skybox_test.go
Expand Up @@ -3,7 +3,7 @@ package factories
import (
"components"
"core"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/freeimage/freeimage_test.go
@@ -1,7 +1,7 @@
package freeimage

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/freeimage/image_test.go
@@ -1,7 +1,7 @@
package freeimage

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
1 change: 1 addition & 0 deletions src/github.com/stretchr/testify
Submodule testify added at 37614a
1 change: 0 additions & 1 deletion src/github.com/stretchrcom/testify
Submodule testify deleted from f3d115
2 changes: 1 addition & 1 deletion src/input/input_dispatcher_test.go
Expand Up @@ -3,7 +3,7 @@ package input
import (
"configs"
"events"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/math_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/matrix_factories_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/matrix_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/projections_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/quaternion_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/math3d/vector_test.go
@@ -1,7 +1,7 @@
package math3d

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/render/material_loader_test.go
@@ -1,7 +1,7 @@
package render

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/render/render_queue_test.go
@@ -1,7 +1,7 @@
package render

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/render/shader_loader_test.go
@@ -1,7 +1,7 @@
package render

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/render/texture_loader_test.go
@@ -1,7 +1,7 @@
package render

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion src/slartibartfast/fixed_camera_mapping_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"components"
"core"
"events"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/slartibartfast/fixed_y_mapping_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"components"
"core"
"events"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/slartibartfast/fps_mapping_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"components"
"core"
"events"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/slartibartfast/top_down_camera_test.go
Expand Up @@ -3,7 +3,7 @@ package main
import (
"core"
"components"
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/util/timing_test.go
@@ -1,7 +1,7 @@
package util

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion src/volume/marching_cubes_test.go
@@ -1,7 +1,7 @@
package volume

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"math3d"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion src/volume/volume_test.go
@@ -1,7 +1,7 @@
package volume

import (
"github.com/stretchrcom/testify/assert"
"github.com/stretchr/testify/assert"
"testing"
)

Expand Down

0 comments on commit 228bcfa

Please sign in to comment.