-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fix Data parsing from string #94
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
package cats.xml | ||
|
||
//TODO | ||
class XmlNumberSuite extends munit.ScalaCheckSuite {} | ||
class XmlNumberSuite extends munit.ScalaCheckSuite { | ||
|
||
test("") { | ||
|
||
Console.println(Xml.fromDataString("5340595900475325933418219074917").getClass) | ||
Check warning Code scanning / Codacy-scalameta-pro (reported by Codacy) Prohibits usage of duplicated string literals.
The string literal '5340595900475325933418219074917' appears 3 times in the file.
Check notice Code scanning / Scalastyle (reported by Codacy) Regular expression matched 'println'.
Regular expression matched 'println'.
Check notice Code scanning / Scalastyle (reported by Codacy) Regular expression matched '{0}' in a token.
Regular expression matched '{0}' in a token.
Check notice Code scanning / Scalastyle (reported by Codacy) The string literal "5340595900475325933418219074917" appears 3 times in the file.
The string literal "5340595900475325933418219074917" appears 3 times in the file.
|
||
assertEquals( | ||
obtained = Xml.fromDataString("5340595900475325933418219074917"), | ||
expected = Xml.ofString("5340595900475325933418219074917") | ||
) | ||
} | ||
} |
Check notice
Code scanning / Scalastyle (reported by Codacy)
Field name does not match the regular expression '^[A-Z][A-Za-z0-9]*$'.