Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove ViperitError enum from codecov #18

Merged
merged 1 commit into from
Mar 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove ViperitError enum from testing coverage, remove unused functio…
…n in String+
  • Loading branch information
ferranabello committed Mar 20, 2017
commit 16f8ab0f86fa90a4149af80efb1f3cf33aa03302
2 changes: 1 addition & 1 deletion Viperit/Core/ViperitError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

internal enum ViperitError : Error {
enum ViperitError : Error {
case methodNotImplemented

var description: String {
Expand Down
3 changes: 0 additions & 3 deletions Viperit/Extensions/String+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ extension String {
var first: String {
return String(characters.prefix(1))
}
var last: String {
return String(characters.suffix(1))
}
var uppercasedFirst: String {
return first.uppercased() + String(characters.dropFirst())
}
Expand Down
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage:
ignore:
- Viperit/Core/ViperitError.swift
- ViperitTests/*
- ViperitTests/Sample/*