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

Do you know non-env specific COM library behave like Excel.Range.Value, for testing bound_named_property #303

Open
junkmd opened this issue Jun 15, 2022 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed tests enhance or fix tests

Comments

@junkmd
Copy link
Collaborator

junkmd commented Jun 15, 2022

.../test/test_Excel.py was attempting to test the behavior of a bound_named_property.

Currently those tests has been skipped.(see #267 (comment), #271, #298)

# Test with empty slice argument
xl.Range["A3:C3"].Value[:] = ('3','2','1')
## not (yet?) implemented:
## xl.Range["A4:C4"].Value = ('3','2','1')
# call property to retrieve value
self.assertEqual(xl.Range["A1:C3"].Value(),
((10.0, 20.0, 31.4),
("x", "y", "z"),
(3.0, 2.0, 1.0)))

We should restore those tests with using non-environment specific library, but I don't know any such behavior classes other than Excel.Range.Value.

Help wanted.

@vasily-v-ryabov vasily-v-ryabov added enhancement New feature or request tests enhance or fix tests help wanted Extra attention is needed labels Jun 18, 2022
@junkmd
Copy link
Collaborator Author

junkmd commented Jun 22, 2022

I was looking for the best library for this issue, as well as I was checking the original test_excel code and execution results.

In doing so, I also found another problem where different versions/bindings.

see #212 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed tests enhance or fix tests
Projects
None yet
Development

No branches or pull requests

2 participants