In python's nosetests you can just specify to run one test by calling it's class followed by the test name, how can we do this with Elixir's ExUnit ?
You can now do mix test path/to/test.exs:13, where 13 is the line of the test.
mix test path/to/test.exs:13
How do I join two strings in a list with a space, like: ["StringA", "StringB"] becomes "StringA StringB"
In Elixir how do you check for type such as in Python: >>> a = "test" >>> type(a) <type 'str'> >>> b =10 >>> type(b) <type 'int'> I …
I need to convert a string to a floating point value or an integer. There was no method such as, string_to_integer